From 6d856acf17761552c5136833b0614a453364a0c5 Mon Sep 17 00:00:00 2001 From: Eshel Yaron Date: Sat, 27 Apr 2024 20:39:19 +0200 Subject: [PATCH] ; Refine 'completion-preview-exact' face * lisp/completion-preview.el (completion-preview-exact): Use different underline color to further distinguish this face from 'completion-preview-common', and improve legibility with dark background color. --- lisp/completion-preview.el | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lisp/completion-preview.el b/lisp/completion-preview.el index 1f9ba2c3d7a..17d9ca938a8 100644 --- a/lisp/completion-preview.el +++ b/lisp/completion-preview.el @@ -129,7 +129,7 @@ If this option is nil, these commands do not display any message." (defface completion-preview-exact ;; An exact match is also the longest common prefix of all matches. - '((t :underline "gray25" :inherit completion-preview-common)) + '((t :underline "#00aa00" :inherit completion-preview-common)) "Face for matches in the completion preview overlay." :version "30.1") -- 2.30.2